home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 016a / del10.zip / DEL!.TXT < prev    next >
Text File  |  1991-12-08  |  1KB  |  46 lines

  1. DEL!.TXT  - how to use the DEL!.COM file delete utility
  2.  
  3. ┌─────────────────────┐
  4. │ DEL! C:\MySub\X.Txt │
  5. │ DEL! C:\MySub\X?.*  │
  6. │ DEL! C:MySub\*.*    │
  7. │ DEL! X.TXT          │
  8. │     ^watch the space│
  9. └─────────────────────┘
  10.  
  11. DEL! is very similar to the normal MS or PC DOS DEL command,
  12. however DEL! is somewhat more powerful.
  13.  
  14. DEL! is just a heavy duty form of DEL for use in BAT files such
  15. as installs.  Its personality is roughly modeled on Arnold's
  16. Schwartzenegger's character in Terminator III.
  17.  
  18. DEL! is taciturn.  It does not complain if the file has already
  19. been deleted -- no more:
  20.         IF EXIST X.TXT DEL X.TXT
  21. just
  22.         DEL! X.TXT
  23.  
  24. DEL! never generates an error message, even when it can find no
  25. files to delete.  If you give it the name of a subdirectory
  26. (without *.*) to delete it does nothing, and makes no complaint.
  27. However if it cannot delete any files, it sets errorlevel to 1.
  28.  
  29. DEL! is ruthless.  It does not pause for confirmation on DEL! *.*
  30. No more SAY! "Y" 13 | DEL *.* >NUL
  31. Just    DEL! *.*
  32.  
  33. DEL! is tough.  It also deletes hidden and read-only files.
  34.  
  35. DEL! is respectful of authority.  It will NOT delete system files.
  36.  
  37. DEL! is light on its feet.  It is only 385 bytes.
  38.  
  39. DEL! is slower than DEL since it is must be loaded each time,
  40. whereas DEL is internal to DOS.
  41.  
  42. Limitations
  43. ***********
  44.  
  45. You cannot have more than one filename or wildcard on the command line.
  46.